Skip to content

BO2 Modding Support & Discussion

Got modding questions regarding Plutonium T6? Scripts erroring? Request help from the community here. Discuss your modding projects etc.

2.3k Topics 9.1k Posts
  • Meaning of the pap zombies camo files

    2
    0 Votes
    2 Posts
    250 Views
    @resonator_12 PBR maps essentially. If you don't know what it is, just check on google List of almost every PBR map possible in T6 : _col or _c : Color map (Less brightness increases metalness) NOTE : ( Color map glows depending on the brightness in Parallax materials such as W115 ) NOTE2 : ( Alpha Channel in a color map on alphatest materials define its opacity) NOTE3 : ( Alpha Channel in a weapon color map defines the reveal map for basic camos like DEVGRU, etc.) NOTE4 : ( A fully transparent pixel on a material that does not belong to the 2 previous categories will be turned into a white pixel ) spc&rgb with random numbers and many "~" : Specular map (RGB) and Glossness (A) NOTE : (Neutral specular color hex code is #383838.) c&rgb with random numbers and many "~" : Color map (RGB) and Reveal/blend (transparency) map (A) or Glossness (A) _nml or _n : normal map (DX) NOTE : Invert Green channel if you need to turn your GL Normal map into a DX Normal map (not required if your texture comes from another cod game) NOTE 2 : ( Flat normal map color hex code is #8080FF but can also be #808000 depending your extraction method.) _ao : Ambient occlusion (mostly weapons) _ir : infrared emissive. R is static heat and G for fire heat _reveal : Emissive map / glow amount of your camo (White = 100 & Black = 0) _ember / _glow : Animated emissive map _heat : Animated reveal map (White = 100 & Black = 0) _e / _e1 / _e2 : emissive textures (mostly used in parallax materials such as W115 camo) skybox_mode_level_ft : Skybox texture (must be extracted and exported as a DDS file - using NVIDIA's photoshop tools) By the way, material types are called "TechniqueSet" in BO2.
  • Error Script

    Moved
    2
    0 Votes
    2 Posts
    70 Views
    You need to separate map-specific custom scripts into map-specific folders inside the scripts\zm folder, otherwise they can cause errors when loading other maps. The script you’re showing is a script specific to zm_buried, as per the original download page: https://github.com/Rebelhero/bo2-super-ee-for-all/releases/latest
  • [DELETED] Ports

    9
    3 Votes
    9 Posts
    603 Views
    Dude I've got so much questions right f now Can I add you in discord maybe ?
  • Changing gun game guns in mp

    multiplayer
    2
    0 Votes
    2 Posts
    258 Views
    AppData\Local\Plutonium\storage\t6\maps\mp\gametypes If those folders don't exist in T6, create them and place gun.gsc in gametypes folder to override the entire stock script. However, I recommend creating a custom script and using replacefunc() to replace any function from gun.gsc or any stock script with your own code, without needing to replace the entire script and for stability purposes. https://plutonium.pw/docs/modding/gsc/new-scripting-features/
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • how to make camos and where to add the files in plutonium bo2?

    Moved
    1
    0 Votes
    1 Posts
    71 Views
    No one has replied
  • How to install ZOMBIES++?

    7
    0 Votes
    7 Posts
    536 Views
    @Menathos in 2020, yes, but now its old and terrible
  • T5/T6 Start at round x

    3
    0 Votes
    3 Posts
    542 Views
    Is there a file or constant I need to import for this to work? level.zombie_move_speed = 71; // works level.zombie_move_speed = "super_sprint"; // doesn't self.zombie_move_speed = "super_sprint"; // doesn't gsc script. I copied constants from another post not sure how accurate they are for round 100 #include common_scripts\utility; #include maps\mp\_utility; #include maps\mp\zombies\_zm_utility; init(){ level.round_number = 100; level.zombie_move_speed = 71; // sprinters - not sure how fast zombies on round 100 are. I assume super sprinters by then level.zombie_vars["zombie_spawn_delay"] = 0.08; } EDIT: Thanks for the help. After setting the round number manually I am able to adjust the move speed to the appropriate value with: level.zombie_move_speed = level.round_number * level.zombie_vars["zombie_move_speed_multiplier"];
  • Start with B23R + regular pistol??

    Moved
    6
    0 Votes
    6 Posts
    303 Views
    @Larccc said in Start with B23R + regular pistol??: B23R save it with .gsc extension. init() { maps\mp\zombies\_zm_utility::onplayerconnect_callback( ::on_player_connect ); } on_player_connect() { self waittill("spawned_player"); if(maps\mp\zombies\_zm_weapons::is_weapon_included("beretta93r_zm")) self maps\mp\zombies\_zm_weapons::weapon_give("beretta93r_zm"); }
  • [Release] [ZM] Monochromatic Perk Icons

    3
    2 Votes
    3 Posts
    283 Views
    I love it, great job, friend.
  • GSC for custom games

    1
    0 Votes
    1 Posts
    175 Views
    No one has replied
  • Can you import custom camos with torrent version of the game?

    Locked
    3
    0 Votes
    3 Posts
    143 Views
    No piracy + just read the doc https://plutonium.pw/docs/modding/loading-textures/
  • Black Ops 2

    Moved
    1
    0 Votes
    1 Posts
    124 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    12 Views
    No one has replied
  • Gsc script to start with points

    9
    0 Votes
    9 Posts
    681 Views
    @Ultimate0 add some wait time before the points, like this #include common_scripts\utility; init() { level waittill( "connected", player ); player thread points(); } points() { wait 10; // revive yourself in this time self.score += 1000000; //max points in black ops 2 wait 4; iprintlnBold( "Your points have been set to: " + self.score ); //you can comment this out by putting a // at the start of the line }
  • 0 Votes
    2 Posts
    84 Views
    @pros only in Custom Games, not in Solo Play.
  • Custom calling cards dont work

    2
    1 Votes
    2 Posts
    281 Views
    the location has been changed long time ago lad heres the new one at bottom left corner of your screen right click your windows icon and select Run then type : %localappdata% then go to plutonium folder then storage then t6 then put your .iwi files in images (if you dont have it create one and rename it to images) folder and done
  • LAN Mode On Dedicated Server

    5
    0 Votes
    5 Posts
    376 Views
    For anyone else coming across this post like I did, concerning point number 1, it seems the server should be in LAN mode if any clients are connecting in LAN mode. Edit the start server bat file and add the -lan flag when starting the server
  • 0 Votes
    1 Posts
    92 Views
    No one has replied
  • BO2 ZM Overflow (488)

    Moved
    5
    0 Votes
    5 Posts
    294 Views
    @JezuzLizard understood, thanks for replying